home *** CD-ROM | disk | FTP | other *** search
- /*
- *--- PPageOptions.h ------------------------------------------------------
- * Copyright (c) 1995-96 Adobe Systems Incorporated. All rights reserved.
- * Created on Thu, Oct 12, 1995 @ 10:48 PM by Paul Ferguson.
- *
- * Description:
- *-------------------------------------------------------------------------
- */
- #ifndef __PPageOptions__
- #define __PPageOptions__
-
- #include "PGetPageOptions.h"
-
- class PPageOptions
- {
-
- public:
-
- PPageOptions(PMBool bDoubleSided, PMBool bFacingPages) { SetOptions(bDoubleSided, bFacingPages); }
- PPageOptions(PGetPageOptions &pageOptions) { SetOptions(pageOptions.bDoubleSided, pageOptions.bFacingPages); }
-
- private:
-
- PPageOptions();
-
- void SetOptions(PMBool bDoubleSided, PMBool bFacingPages);
- };
-
- #endif
-
- // end of PPageOptions.h
-